Stored Procedures

NOTE: The .NET Client attaches the provider-specific prefix "SequeLink" to the names of the public objects, for example, SequeLinkConnection or SequeLinkCommand.

To enable stored procedures in the application, do the following:

To retrieve the return value from a stored procedure, the application should add an extra parameter to the parameter collection for the SequeLinkCommand object. This parameter's ParameterDirection property should be set to ParameterDirection.ReturnValue. The return value parameter can be anywhere in the parameter collection because it does not correspond to a specific parameter marker in the Text property of the SequeLinkCommand object.

If the stored procedure does not produce a return value, parameters bound with the ParameterDirection.ReturnValue property are ignored.

If the stored procedure returns a ReturnValue from the database and the application has not bound a parameter for it, the data provider discards the value.